home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Web Masters 11
/
WEB_11.iso
/
100domes
/
Antechinus JavaScript Editor 2.0
/
Setup.exe
/
Setups
/
JSEd
/
Installed
/
Solutions
/
Misc
/
BrowserCheck.js
next >
Wrap
Text File
|
2001-09-29
|
546b
|
18 lines
function BrowserCheck()
{
var b = navigator.appName
if (b=="Netscape") this.b = "ns"
else if (b=="Microsoft Internet Explorer") this.b = "ie"
else this.b = b
this.version = navigator.appVersion
this.v = parseInt(this.version)
this.ns = (this.b=="ns" && this.v>=4)
this.ns4 = (this.b=="ns" && this.v==4)
this.ns5 = (this.b=="ns" && this.v==5)
this.ie = (this.b=="ie" && this.v>=4)
this.ie4 = (this.version.indexOf('MSIE 4')>0)
this.ie5 = (this.version.indexOf('MSIE 5')>0)
this.min = (this.ns||this.ie)
}
is = new BrowserCheck()